home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 003 / motorola / Examples / as11 / VECTORS < prev   
Text File  |  1993-06-13  |  808b  |  19 lines

  1. *VECTORS.AS
  2. *******************************************************************************
  3. *                                                                             *
  4. * The following definitions constitute the interrupt vector table. The user   *
  5. * may modify this as necessary to fit his application. DO NOT CHANGE THE      *
  6. * BASIC DEFINITIONS AS SHOWN BELOW.                                           *
  7. *                                                                             *
  8. *******************************************************************************
  9.  
  10.         ORG    $FFF0
  11.         FDB    rtiisr              RTI Vector
  12.  
  13.         ORG    $FFF6
  14.         FDB    mcxsrv              SWI Vector to enter MCX11 ESRs
  15.  
  16.         ORG    $FFFE
  17.         FDB    mcxinit             Power-On/Reset Vector
  18.  
  19.